From 009b93cbd1d2c9701d03fba84e8456bd4cebcbad Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Thu, 8 Nov 2018 21:07:13 -0600 Subject: [PATCH] Clean up and fix cleaning of pytest generate files --- Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 67e816f..7578423 100644 --- a/Makefile +++ b/Makefile @@ -26,11 +26,9 @@ VIRTUALENV=virtualenv -p ${PYTHON_EXE} TARGETS = EXTRA_TARGETS = README.html SETUPTOOLS_STUFF = build dist src/pgwui_logout.egg-info -# Python 2 needs to remove *.pyc stuff -PYTEST_STUFF = .cache .pytest_cache src/pgwui_logout/views/__pycache__ \ - tests/__pycache__ tests/.pytest_cache \ - tests/test_views/__pycache__ tests/test_views/.pytest_cache \ - tests/test_views/__init__.pyc +PYTEST_STUFF = .cache \ + src/pgwui_logout/__pycache__ src/pgwui_logout/views/__pycache__ \ + tests/__pycache__ tests/views/__pycache__ COVERAGE_STUFF = .coverage TOX_STUFF = .tox -- 2.34.1